GET
/
1
/
clusters
/
mapping
// Initialize the client
var client = new SearchClient(new SearchConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY"));

// Call the API
var response = await client.ListUserIdsAsync();
// >LOG
{
  "userIDs": [
    {
      "userID": "user1",
      "clusterName": "c1-test",
      "nbRecords": 42,
      "dataSize": 0
    }
  ]
}

Authorizations

x-algolia-application-id
string
header
required

Your Algolia application ID.

x-algolia-api-key
string
header
required

Your Algolia API key with the necessary permissions to make the request. Permissions are controlled through access control lists (ACL) and access restrictions. The required ACL to make a request is listed in each endpoint's reference.

Query Parameters

page
integer | null

Requested page of the API response. If null, the API response is not paginated.

Required range: x >= 0
hitsPerPage
integer
default:100

Number of hits per page.

Response

200
application/json

OK

User ID data.